VALUE "Translation", 0x0804 0x04B0

来源:百度知道 编辑:UC知道 时间:2024/06/16 04:09:10
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0804 0x04B0
这些是什么意思?

最佳答案: 兄弟,delphi2007正版还是盗版?哪儿弄的?能否告知一下?

一、开使你的第一个DLL专案
1.File->Close all->File->New〔DLL〕

代码:
//自动产生Code如下
library Project2;
//这有段废话
uses
SysUtils,
Classes;

{ *.RES}

begin
end.

2.加个Func进来:
代码:
library Project2;
uses
SysUtils,
Classes;

Function MyMax ( X , Y : integer ) : integer ; stdcall ;
begin
if X > Y then
Result := X
else
Result := Y ;
end ;
//切记:Library 的名字大小写没关系,可是DLL-Func的大小写就有关系了。
// 在 DLL-Func-Name写成MyMax
下一页

返回搜索结果
返回该问题
返回知道首页
返回百度首页
12-04 21:18